Get Recipe

Get a specific recipe

Request
path Parameters
id
required
string

: Recipe ID

Responses
200

Ok

400

Missing or Invalid id

404

Recipe not found

get/recipes/{id}
Request samples

dataset.recipes.get(recipe_id='recipe_id')

# 
# Get a Recipe object to use in your code.
# 
# **Prerequisites**: You must be in the role of an *owner* or *developer*.
# 
# :param str recipe_id: recipe id
# :return: Recipe object
# :rtype: dtlpy.entities.recipe.Recipe
# 
# 
Response samples
application/json
{
  • "id": "string",
  • "url": "string",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "updatedBy": "string",
  • "creator": "string",
  • "title": "string",
  • "projectIds": [
    ],
  • "ontology": {
    },
  • "labelScript": "string",
  • "toolsSettings": {
    },
  • "uiSettings": {
    },
  • "metadata": {
    },
  • "v2": true
}